home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / shutdo.zip / MAKEFILE next >
Text File  |  1993-06-27  |  298b  |  13 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. !include <ntwin32.mak>
  4.  
  5. all: shutdown.exe
  6.  
  7. shutdown.obj: shutdown.c
  8.     $(cc) $(cflags) $(cvars) shutdown.c
  9.  
  10. shutdown.exe: shutdown.obj
  11.     $(link) $(conflags) -out:shutdown.exe shutdown.obj libc.lib kernel32.lib ntdll.lib advapi32.lib
  12.  
  13.